Welcome![Sign In][Sign Up]
Location:
Search - socket udp

Search list

[Other Gamesnetworkgame

Description: The word building game is a well known game all over the world. It is also called as scrabble. In this network-supported game, four players can play the game together sharing the same matrix board. Players can join their corresponding opponents directly by searching. I have used UDP sockets for searching the hosted game and TCP sockets for game processing. This game can be played within the subnet.
Platform: | Size: 41984 | Author: 王小文 | Hits:

[TCP/IP stackJBSocketServerTestSource

Description: Testing TCP and UDP socket servers using C# and .NETWhen you re developing a TCP/IP server application it s easy to test it poorly. It s easy to fire requests into a server, check the responses and assume that s enough. Even if you re testing using the actual production client application you may find that you are failing to fully test the server under heavy load or unusual network conditions. You may be using two or more machines, but your development network probably doesn t cause the kind of packet fragmentation and delays that you might encounter in the wild. Often when testing in the development environment your server only ever receives complete, distinct messages, and this can lead novice developers to assume that this is how it always is. As we pointed out in a previous article, the server developer is always responsible for breaking up the TCP byte stream into protocol specific chunks.
Platform: | Size: 110592 | Author: 王小文 | Hits:

[Internet-Networkudp通信

Description: 这是一个利用UDP进行通信的小程序,用的是异步套接字模式,可以灵活的改变原IP和目的IP以及原端口和 目的端口 -This is a use of UDP communications for the small program using the asynchronous socket model, the flexibility to change the original purpose of IP and IP, and the original purpose of ports and port
Platform: | Size: 27648 | Author: 程拨 | Hits:

[Windows Develop传输2006

Description: 1.本实验要求利用微软的socket编程一段程序,可以利用TCP协议或者UDP协议,实现文件传输。-1. This experiment required the use of Microsoft's socket programming section of procedures, we can use TCP or UDP, transfer files.
Platform: | Size: 30720 | Author: 刘杰 | Hits:

[Internet-NetworkSOCK_MULTICAST

Description: 用DELPHI写的用Socket实现UDP组播的例程.-with Delphi written with Socket UDP Multicast routines.
Platform: | Size: 208896 | Author: 但是 | Hits:

[Internet-NetworkUdpClientDemo

Description: socket编程客户端例子,在VC6下编译通过,采用UDP协议-client socket programming examples, compiled under the VC6 by using UDP
Platform: | Size: 2048 | Author: JW | Hits:

[Internet-NetworkUdpServerDemo

Description: socket编程服务端例子,在VC6下编译通过,采用UDP协议-socket programming services-an example, in the VC6 compiler, using UDP
Platform: | Size: 2048 | Author: JW | Hits:

[Otherwssf

Description: JICQ是用JAVA语言编写的一个基于客户机/服务器(C/S)模式的局域短信实时通信工具系统,系统采用了Microsoft公司的SQL Server 2000作为后台数据库,系统通过JDBC访问数据库。系统分为服务器程序和客户程序两部分,服务器与客户间采用“传输控制协议”(TCP),通过套接字(Socket)连接,客户之间采用“用户数据报协议”(UDP),通过数据报套接字(DatagramSocket)建立连接。系统具有用户注册、用户登录、添加好友、删除好友、发送和接收消息等功能。-JICQ Java is a language based on the client/server (C/S) mode Local SMS real-time communications tool, the system uses Microsoft's SQL Server 2000 database as a background, system access to the database through JDBC. System is divided into server and two clients, the server-client "Transmission Control Protocol" (TCP), socket (Socket) connectivity, customers using the "User Datagram Protocol" (UDP), through Datagram Sockets (DatagramSocket) establish a connection. Users registered with the system, users log in, friends add, delete friends, send and receive news and other functions.
Platform: | Size: 54272 | Author: 乔峰 | Hits:

[GUI DevelopCMulticastSocket

Description: 基于udp的多播程序,先加入多播组,然后可以向多播组成员发送消息-based udp multicast procedures to join the multicast group, and then to the multicast group members Send Message
Platform: | Size: 435200 | Author: Andy | Hits:

[Internet-NetworkCodeNet

Description: 网络的相关知识,网络程序的编写,Socket是连接应用程序与网络驱动程序的桥梁,Socket在应用程序中创建,通过bind与驱动程序建立关系。此后,应用程序送给Socket的数据,由Socket交给驱动程序向网络上发送出去。计算机从网络上收到与该Socket绑定的IP+Port相关的数据后,由驱动程序交给Socket,应用程序便可从该Socket中提取接收到的数据。网络应用程序就是这样通过socket进行数据的发送与接收的。TCP与UDP的工作原理与编写过程,如何在程序中链接库文件。一个字符界面的聊天程序。-network of the knowledge, network program, Socket is a link between the application and network drivers for the bridge, Socket in the application process to create, Driving through bind with the procedures established relations. Since then, Socket applications presented data from the socket to the network driver to send out. Computer network received from the socket and bundled IP Port-related data, from driver to Socket, applications from the Socket can extract the data receiver. Web applications is through this socket for data transmission and reception. TCP and UDP Principle and the work of the preparation process, and how to process link libraries. A character based chat program.
Platform: | Size: 25600 | Author: 李佳明 | Hits:

[Internet-NetworksocketChart

Description: 采用UDP编写聊天的程序.输入对方IP后可以直接聊天,cs模式的-prepared using UDP Chat procedures. IP imported each other directly after the chat, the model cs
Platform: | Size: 35840 | Author: gua | Hits:

[VC/MFCsocket_program_guide

Description: 1.套接字编程原理 1.1 Client/server通信模型 1.2 Windows Sockets规范 1.3 套接字 1.3.1 套接字定义 1.3.2分类 1.3.3 套接字的作用 1.3.4端口与地址 1.3.5 套接口属性 2.基本的Windows Sockets API编程 2.1常用函数 2.2 TCP实例 2.3 UDP实例 2.4 Socket 通信阻塞的解决方法 3.MFC下的Socket编程的类 3.1 CAsyncSocket类 3.2 CSocket类 3.3 Windows Sockets:带存档的套接字的工作方式 3.4 流式套接字通信的操作顺序 3.5 使用 CAsyncSocket 类 3.6 从套接字类派生 3.7 套接字通知 3.8 一个使用CSocket类的网络通信实例 3.8.1 服务器端应用程序设计(ServerDemo) 3.8.2 客户端应用程序设计(项目名称ClientDemo) 4.套接字的托管实现 4.1 System::Net::Sockets 命名空间 4.2 实例:一个新邮件检查器 -1. Socket Programming Principle 1.1 Client/server communications model Soc Windows 1.2 kets norms 1.3 Socket socket definition 1.3.1 1.3.3 1.3.2 classification socket role 1.3.4 1.3.5 addresses and port interface attributes two sets. Basic programming Windows Sockets API function commonly used 2.1 2.2 2.3 TCP example UDP Socket Communications examples 2.4 blocked three solutions. MFC Socket Programming under the category of Class 3.2 3.1 CAsyncSocket CSocke t Windows Sockets 3.3 categories : filing with the way socket 340 socket communication flow sequence of operation to use 3.5 CAsyncSo cket category 3.6 derived from the socket type 3.8 3.7 socket notice the use of a network of CSocket Communication Liaison example 3.8.1 server application design (ServerDemo) 3.8.2 client Application D
Platform: | Size: 173056 | Author: gong | Hits:

[P2PLinuxUDP_Client-Server

Description: socket实例。网络编程初级入门知识,已经调试通过的。-socket examples. Network Programming primary portal of knowledge, has been adopted by the debugger.
Platform: | Size: 3072 | Author: 王正大 | Hits:

[Other Embeded programucos-tcpip

Description: 基于ucos的TCPIP包。 全部源代码和说明文件 TCP PING ARP CRC ETHERNET HARDWARE INCLUDE IP socket UDP-OUT Beginners package. All source code and documentation PING ARP TCP CRC ETHERNET HARDWARE I NCLUDE UDP IP socket
Platform: | Size: 33792 | Author: 易宏宇 | Hits:

[Internet-Networktcpudpserver

Description: 首先Server程序创建两个socket,分别为 TCP socket(使用命令行参数指定的端口号)和UDP socket(UDP端口号自定义,使用宏定义写在程序里,必须大于1024)。server端在这两个端口上侦听连接,接受来自客户端的服务请求。客户端根据提示进行操作。-procedures created two socket, for TCP socket (using the command line parameters designated ports), and UDP socket (UD P-defined port, the use of write-in process definition, must be greater than 1024). In this terminal server ports on the two monitors connected to accept from the client service requests. According to client instructions.
Platform: | Size: 155648 | Author: 李皓雯 | Hits:

[TCP/IP stackUDPSock

Description: 当时做工程时需要UDP调试设备发来得信息,找了几个都不理想,索性自己做了一个,希望对刚刚学习socket编程的朋友有所帮助-time when the need to do debugging of equipment UDP more information, to find a few not ideal, simply doing a, and I hope to learn socket programming just friends help
Platform: | Size: 221184 | Author: mrqin | Hits:

[CommunicationudpSvr

Description: vc++ Socket编程入门程序,容易上手,入门首选,才用UDP方式,服务器端-vc Socket Programming induction procedures, easier to get started, beginners choice before using UDP, server
Platform: | Size: 5120 | Author: 刘芳非 | Hits:

[CommunicationudpClie

Description: vc++ Socket编程入门程序,容易上手,入门首选,才用UDP方式,客户端-vc Socket Programming induction procedures, easier to get started, beginners choice before using UDP, the client
Platform: | Size: 2048 | Author: 刘芳非 | Hits:

[TCP/IP stackSocketTcpUdp

Description: udp和tcp程序 实现多客户端同时连接,并能同时发送信息和接收信息。 504547114-tcp and udp procedures multi-client link, and at the same time send messages and receive information. 504547114
Platform: | Size: 51200 | Author: 王强 | Hits:

[P2PCsharpUdpsockettest

Description: 这是一个用Csharp写的 Socket无连接收发数据的服务器端和客户端源码-This a use of Socket Csharp was no link transceiver data server and client source code
Platform: | Size: 4096 | Author: | Hits:
« 1 2 3 45 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net